crypto/cipher.ctr.ctr (field)

6 uses

	crypto/cipher (current package)
		ctr.go#L19: 	ctr     []byte
		ctr.go#L48: 		ctr:     dup(iv),
		ctr.go#L60: 		x.b.Encrypt(x.out[remain:], x.ctr)
		ctr.go#L64: 		for i := len(x.ctr) - 1; i >= 0; i-- {
		ctr.go#L65: 			x.ctr[i]++
		ctr.go#L66: 			if x.ctr[i] != 0 {